home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE02
/
TPACK
/
TPACK.ZIP
/
TPDLL.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-05-19
|
211 b
|
19 lines
library tpDLL;
uses Forms, About;
procedure AboutBox; export;
begin
With TAboutBox.Create(Application) do try
Execute
finally
free;
end;
end;
exports
AboutBox;
begin
end.